Get a timestream
GET/timestreams/:timestreamId
Gets full details of a specific timestream
Request
Path Parameters
The id of the timestream
Header Parameters
OneBasket API Key
Responses
- 200
- 400
- 401
- 404
The request has succeeded.
- application/json
- Schema
- Example (from schema)
Schema
- TicketedEvent
Possible values: [TicketedEvent]
The type of the timestream
circular(Timestreams.TicketedEventTimestreamDto)
The unique identifier of the timestream
The title of the timestream
The description of the timestream
The venue selected for the timestream
timelines objectrequired
The timelines of the timestream
Possible values: [TicketedEvent]
The name of the venue
The name of the competation
The date of the event
The logo of the event
The logo of the competition
{
"type": "TicketedEvent",
"ticketedEvent": "string",
"venueName": "string",
"competitionName": "string",
"date": "2024-01-11T21:22:38.995Z",
"logoUrl": "string",
"competitionLogoUrl": "string",
"id": "string",
"title": "string",
"description": "string",
"venue": "string",
"timelines": {}
}
The server could not understand the request due to invalid syntax.
- application/json
- Schema
- Example (from schema)
Schema
A URI reference [RFC3986] that identifies the problem type.
Possible values: [Bad request]
A short, human-readable summary of the problem type.
Possible values: [400]
The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem.
errors objectrequired
{
"type": "string",
"title": "Bad request",
"status": 400,
"detail": "string",
"instance": "string",
"errors": {}
}
Access is unauthorized.
- application/json
- Schema
- Example (from schema)
Schema
A URI reference [RFC3986] that identifies the problem type.
Possible values: [Unauthorized]
A short, human-readable summary of the problem type.
Possible values: [401]
The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem.
{
"type": "string",
"title": "Unauthorized",
"status": 401,
"detail": "string",
"instance": "string"
}
The server cannot find the requested resource.
- application/json
- Schema
- Example (from schema)
Schema
A URI reference [RFC3986] that identifies the problem type.
Possible values: [Not Found]
A short, human-readable summary of the problem type.
Possible values: [404]
The HTTP status code([RFC7231], Section 6) generated by the origin server for this occurrence of the problem.
A human-readable explanation specific to this occurrence of the problem.
A URI reference that identifies the specific occurrence of the problem.
{
"type": "string",
"title": "Not Found",
"status": 404,
"detail": "string",
"instance": "string"
}